home *** CD-ROM | disk | FTP | other *** search
- Path: ix.netcom.com!news
- From: jhewett@ix.netcom.com (Jerry Hewett)
- Newsgroups: comp.lang.c++
- Subject: Re: Help - ERROR: Use C++ with iostream.h - ???
- Date: Mon, 08 Apr 96 17:01:49 GMT
- Organization: Netcom
- Message-ID: <N.040896.100149.11@ix.netcom.com>
- References: <31671633.33DD@inforamp.net>
- NNTP-Posting-Host: tem-ca1-01.ix.netcom.com
- X-NETCOM-Date: Mon Apr 08 12:02:19 PM CDT 1996
- X-Newsreader: Quarterdeck Message Center [2.00]
-
- > When I run a program I brought from schoo, that is properly formatted and
- > runs on the UNIX/PowerPC system there, I get an error like "Use C++ with
- > iostream.h". I even renamed the first character in the header file from
- > an upper case "I" to a lower case "i". Any ideas?
-
- Just guessing here, but if the include in your CPP program looks like this:
-
- #include "iostream.h"
-
- Change it to:
-
- #include <iostream.h>
-
- Jerry H.
-
-
-